.loadScreenCont {
    display: flex;
    justify-content: center;
    position: absolute;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    container-type: inline-size;
    transition: opacity 0.25s ease-out;
}

.loadAnimCont {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
    top: 50%;
    aspect-ratio: 1 / 1;
    transform: translate(0, -50%);
    transition: opacity 0.7s ease-in-out;
}

.loadAnimBox {
    position: relative;
    height: 45.898%;
    width: 45.898%;
    transform: scale(0);
    border-radius: 10%;
    transition: all 0.5s ease-in-out;
}

.LABAnim {
    transform: scale(0.999);
}

.LABCont {
    height: 100%;
    width: 100%;
}

@keyframes rotation {
    33.333%, 100% { transform: rotate(360deg); }
}

@keyframes minusRotation {
    33.333%, 100% { transform: rotate(540deg); }
}

.vLine {
    position: absolute;
    height: 55%;
    width: 12.5%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--dark);
    border-radius: 10% / 2.5%;
    transition: all 0.3s ease-out;
    transform: scaleY(0);
}

.hLine {
    position: absolute;
    height: 12.5%;
    width: 55%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--dark);
    border-radius: 3% / 12%;
    transition: all 0.3s ease-out;
    transform: scaleX(0);
}

.dLine1 {
    position: absolute;
    height: 55%;
    width: 12.5%;
    top: 7.5%;
    left: 0;
    right: 42.5%;
    bottom: 0;
    margin: auto;
    background-color: var(--dark);
    border-radius: 10% / 2%;
    transition: all 0.3s ease-out;
}

.dLine2 {
    position: absolute;
    height: 55%;
    width: 12.5%;
    top: 25%;
    left: 35%;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--dark);
    border-radius: 10% / 2%;
    transition: all 0.3s ease-out;
}

.hLine1 {
    position: absolute;
    height: 12.5%;
    width: 55%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 27.5%;
    margin: auto;
    background-color: var(--dark);
    border-radius: 3% / 12%;
    transition: all 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: 0 100%;
}

.hLine2 {
    position: absolute;
    height: 12.5%;
    width: 55%;
    top: 27.5%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--dark);
    border-radius: 3% / 12%;
    transition: all 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: 100% 0;
}

.skipButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 75%;
    color: #EBEBEB;
    opacity: 0.2;
    font-family: "comic_neue_angularbold";
    font-size: 15cqw;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.skipButton::before {
    content: "Skip Loading";
}

.skipButton:hover {
    opacity: 0.5;
}

.skipButton:focus {
    outline: none;
    opacity: 0.5;
}